Hexo Next 创建分类和标签页

创建分类页面

新建一个页面,命名为 categories 。命令如下:

hexo new page categories
编辑刚新建的页面,在source/categories目录下的index.md,
将页面的类型设置为 categories ,主题将自动为这个页面显示所有分类。


title: 分类
date: 2014-12-22 12:39:04
type: "categories"
## 如果在主题layout自定义了分类显示页面,可以设置对应的layout的页面
#layout: "custom_layout"
---

注意:如果有启用多说 或者 Disqus 评论,默认页面也会带有评论。
需要关闭的话,请添加字段 comments 并将值设置为 false,如:

title: 分类
date: 2014-12-22 12:39:04
type: "categories"
comments: false
---

在菜单中添加链接。编辑主题的 _config.yml ,
将 menu 中的 categories: /categories 注释去掉,如下:

menu:
    home: / || home
    #about: /about/ || user
    #tags: /tags/ || tags
    categories: /categories/ || th

创建标签云页面

添加一个标签云页面,并在菜单中显示页面链接。

新建一个页面,命名为 tags 。命令如下:

hexo new page "tags"

编辑刚新建的页面,将页面的类型设置为 tags ,主题将自动为这个页面显示标签云。

title: All tags
date: 2014-12-22 12:39:04
type: "tags"
---

注意:如果有启用多说 或者 Disqus 评论,默认页面也会带有评论。
需要关闭的话,请添加字段 comments 并将值设置为 false,如:

title: All tags
date: 2014-12-22 12:39:04
type: "tags"
comments: false
---

在菜单中添加链接。编辑主题的 _config.yml ,添加 tags 到 menu 中,如下:

menu:
    home: / || home
    #about: /about/ || user
    tags: /tags/ || tags